100
It seems that the control uses the TAB key, is there any way to avoid that
OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.UseTabKey = false

99
How do I assign a database to your control, using ADO, ADOR or ADODB objects

OleObject oComboBox,rs

oComboBox = ole_1.Object
oComboBox.ColumnAutoResize = false
rs = CREATE OLEObject
rs.ConnectToNewObject("ADOR.Recordset")
	rs.Open("Orders","Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Program Files\Exontrol\ExComboBox\Sample\Access\SAMPLE.MDB",3,3)
oComboBox.DataSource = rs

98
How do I change the visual appearance effect for the selected item, using EBN

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oComboBox.SelBackColor = 16777216 /*0x1000000*/
oComboBox.SelForeColor = RGB(0,0,0)
oComboBox.ShowFocusRect = false
oComboBox.Columns.Add("Column")
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)

97
How do I change the colors for the selected item

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.SelBackColor = RGB(0,0,0)
oComboBox.Columns.Add("Column")
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)

96
How do I get ride of the rectangle arround focused item

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.ShowFocusRect = false
oComboBox.Columns.Add("Column")
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)

95
How can I change the control's font

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Font.Name = "Tahoma"
oComboBox.Columns.Add("Column")

94
I can't scroll to the end of the data. What can I do

OleObject oComboBox,var_Items,var_Items1,var_Items2,var_Items3

oComboBox = ole_1.Object
oComboBox.ScrollBySingleLine = true
oComboBox.DrawGridLines = -2
oComboBox.Columns.Add("Column")
var_Items = oComboBox.Items
	var_Items.ItemHeight(var_Items.AddItem(0),13)
oComboBox.PutItems(oComboBox.GetItems(0))
var_Items1 = oComboBox.Items
	var_Items1.ItemHeight(var_Items1.AddItem(1),26)
oComboBox.PutItems(oComboBox.GetItems(0))
var_Items2 = oComboBox.Items
	var_Items2.ItemHeight(var_Items2.AddItem(2),36)
oComboBox.PutItems(oComboBox.GetItems(0))
var_Items3 = oComboBox.Items
	var_Items3.ItemHeight(var_Items3.AddItem(3),48)
oComboBox.PutItems(oComboBox.GetItems(0))

93
How do I specify the column where the tree lines / hierarchy are shown

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.LinesAtRoot = 1
oComboBox.TreeColumnIndex = 1
oComboBox.Columns.Add("Column 1")
oComboBox.Columns.Add("Column 2")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1.1")
	var_Items.CellCaption(h,1,"Root 1.2")
	var_Items.CellCaption(var_Items.InsertItem(h,,"Child 1.1"),1,"Child 1.2")
	var_Items.CellCaption(var_Items.InsertItem(h,,"Child 2.1"),1,"Child 2.2")
	var_Items.ExpandItem(h,true)
	h = var_Items.AddItem("Root 2.1")
	var_Items.CellCaption(h,1,"Root 2.2")
	var_Items.CellCaption(var_Items.InsertItem(h,,"Child 1.1"),1,"Child 1.2")

92
How do I specify the indentation of the child items relative to their parents

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.LinesAtRoot = 1
oComboBox.Indent = 11
oComboBox.Columns.Add("Column")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)
	h = var_Items.AddItem("Root 2")
	var_Items.InsertItem(h,,"Child")

91
How can I programmatically change the column where incremental searching is performed

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("Column 1")
oComboBox.Columns.Add("Column 2")
var_Items = oComboBox.Items
	var_Items.CellCaption(var_Items.AddItem("Item 1"),1,"SubItem 1")
oComboBox.SearchColumnIndex = 1

90
How do I disable the full-row selection in the control

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.FullRowSelect = false
oComboBox.Columns.Add("Column")
oComboBox.Items.AddItem("One")
oComboBox.Items.AddItem("Two")

89
Is there any option to specify the height of the items, before adding them

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.DefaultItemHeight = 32
oComboBox.Columns.Add("Column")
oComboBox.Items.AddItem("One")
oComboBox.Items.AddItem("Two")

88
How do lock / fix some columns to the control, so I can see them all the time, event if I scroll the columns

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.CountLockedColumns = 1
oComboBox.BackColorLock = RGB(240,240,240)
oComboBox.ColumnAutoResize = false
oComboBox.Columns.Add("Locked").Width = 128
oComboBox.Columns.Add("Un-Locked 1").Width = 128
oComboBox.Columns.Add("Un-Locked 2").Width = 128
oComboBox.Columns.Add("Un-Locked 3").Width = 128
var_Items = oComboBox.Items
	var_Items.CellCaption(var_Items.AddItem("locked"),1,"unlocked")

87
How do I change the control's background / foreground color on the locked area

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.CountLockedColumns = 1
oComboBox.ForeColorLock = RGB(240,240,240)
oComboBox.BackColorLock = RGB(128,128,128)
oComboBox.ColumnAutoResize = false
oComboBox.Columns.Add("Locked").Width = 128
oComboBox.Columns.Add("Un-Locked 1").Width = 128
oComboBox.Columns.Add("Un-Locked 2").Width = 128
oComboBox.Columns.Add("Un-Locked 3").Width = 128
var_Items = oComboBox.Items
	var_Items.CellCaption(var_Items.AddItem("locked"),1,"unlocked")

86
How do I change the control's foreground color

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.ForeColor = RGB(120,120,120)
oComboBox.Columns.Add("Column")
oComboBox.Items.AddItem("item")

85
How do I change the control's background color

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.BackColor = RGB(200,200,200)

84
How do I use my own icons for my radio buttons

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oComboBox.RadioImage(false,1)
oComboBox.RadioImage(true,2)
oComboBox.Columns.Add("Radio").Def(1,true)
var_Items = oComboBox.Items
	var_Items.AddItem("Radio 1")
	var_Items.CellState(var_Items.AddItem("Radio 2"),0,1)
	var_Items.AddItem("Radio 3")

83
How do I use my own icons for checkbox cells

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oComboBox.CheckImage(0,1)
oComboBox.CheckImage(1,2)
oComboBox.Columns.Add("Check").Def(0,true)
var_Items = oComboBox.Items
	var_Items.AddItem("Check 1")
	var_Items.CellState(var_Items.AddItem("Check 2"),0,1)

82
How do I perform my own sorting when user clicks the column's header

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.SortOnClick = 1
oComboBox.Columns.Add("Column")
oComboBox.Items.AddItem("Item 1")
oComboBox.Items.AddItem("Item 2")

81
How do I disable sorting a specified column when clicking its header

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("1")
oComboBox.Columns.Add("NoSort").AllowSort = false

80
How do I disable sorting the columns when clicking the control's header

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.SortOnClick = 0
oComboBox.Columns.Add("1")
oComboBox.Columns.Add("2")

79
How do I sort descending a column, and put the sorting icon in the column's header

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("Column")
var_Items = oComboBox.Items
	var_Items.AddItem("Item 1")
	var_Items.AddItem("Item 2")
	var_Items.AddItem("Item 3")
oComboBox.Columns.Item(0).SortOrder = 2

78
How do I sort ascending a column, and put the sorting icon in the column's header

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("Column")
var_Items = oComboBox.Items
	var_Items.AddItem("Item 3")
	var_Items.AddItem("Item 1")
	var_Items.AddItem("Item 2")
oComboBox.Columns.Item(0).SortOrder = 1

77
How do I perform my own/custom sort, using my extra strings

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("desc").SortType = 5
var_Items = oComboBox.Items
	var_Items.CellData(var_Items.AddItem("A"),0,"C")
	var_Items.CellData(var_Items.AddItem("B"),0,"B")
	var_Items.CellData(var_Items.AddItem("C"),0,"A")
	var_Items.SortChildren(0,0,false)

76
How do I perform my own/custom sort, using my extra numbers

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("desc").SortType = 5
var_Items = oComboBox.Items
	var_Items.CellData(var_Items.AddItem(0),0,2)
	var_Items.CellData(var_Items.AddItem(1),0,1)
	var_Items.CellData(var_Items.AddItem(2),0,0)
	var_Items.SortChildren(0,0,false)

75
By default, the column gets sorted as strings, so how do I sort a column by time only

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("desc").SortType = 4
var_Items = oComboBox.Items
	var_Items.AddItem("11:00")
	var_Items.AddItem("10:10")
	var_Items.AddItem("12:12")
	var_Items.SortChildren(0,0,false)

74
By default, the column gets sorted as strings, so how do I sort a column by date and time

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("desc").SortType = 3
var_Items = oComboBox.Items
	var_Items.AddItem("1/1/2001 11:00")
	var_Items.AddItem("1/1/2001 10:10")
	var_Items.AddItem("1/3/2003")
	var_Items.SortChildren(0,0,false)

73
By default, the column gets sorted as strings, so how do I sort a column by dates

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("desc").SortType = 2
var_Items = oComboBox.Items
	var_Items.AddItem("1/1/2001")
	var_Items.AddItem("1/2/2002")
	var_Items.AddItem("1/3/2003")
	var_Items.SortChildren(0,0,false)

72
How do I sort a column by numbers

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("desc").SortType = 1
var_Items = oComboBox.Items
	var_Items.AddItem(1)
	var_Items.AddItem(5)
	var_Items.AddItem(10)
	var_Items.SortChildren(0,0,false)

71
How do I hide the control's header bar

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.HeaderVisible = false

70
How do change the visual appearance for the control's header bar, using EBN

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oComboBox.HeaderBackColor = 16777216 /*0x1000000*/

69
How do I remove the control's border

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Appearance = 0

68
I have a hierarchy and I need to filter only root items that match, with thier childs

OleObject oComboBox,var_Column,var_Items
any h

oComboBox = ole_1.Object
oComboBox.LinesAtRoot = -1
oComboBox.FilterInclude = 3
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.FilterType = 240
	var_Column.Filter = "R1"
var_Items = oComboBox.Items
	h = var_Items.AddItem("R1")
	var_Items.InsertItem(h,,"C1")
	var_Items.InsertItem(h,,"C2")
	var_Items.ExpandItem(h,true)
	h = var_Items.AddItem("R2")
	var_Items.InsertItem(h,,"C1")
	var_Items.InsertItem(h,,"C2")
oComboBox.ApplyFilter()

67
I have a hierarchy and I need to filter only root items that match, without thier childs

OleObject oComboBox,var_Column,var_Items
any h

oComboBox = ole_1.Object
oComboBox.LinesAtRoot = -1
oComboBox.FilterInclude = 2
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.FilterType = 240
	var_Column.Filter = "R1"
var_Items = oComboBox.Items
	h = var_Items.AddItem("R1")
	var_Items.InsertItem(h,,"C1")
	var_Items.InsertItem(h,,"C2")
	var_Items.ExpandItem(h,true)
	h = var_Items.AddItem("R2")
	var_Items.InsertItem(h,,"C1")
	var_Items.InsertItem(h,,"C2")
oComboBox.ApplyFilter()

66
I have a hierarchy and I need to filter only parent items that match, including thier childs

OleObject oComboBox,var_Column,var_Items
any h

oComboBox = ole_1.Object
oComboBox.LinesAtRoot = -1
oComboBox.FilterInclude = 1
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.FilterType = 240
	var_Column.Filter = "R1"
var_Items = oComboBox.Items
	h = var_Items.AddItem("R1")
	var_Items.InsertItem(h,,"C1")
	var_Items.InsertItem(h,,"C2")
	var_Items.ExpandItem(h,true)
	h = var_Items.AddItem("R2")
	var_Items.InsertItem(h,,"C1")
	var_Items.InsertItem(h,,"C2")
oComboBox.ApplyFilter()

65
How can I get ride/hide of the "Filter For" field

OleObject oComboBox,var_Column

oComboBox = ole_1.Object
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.DisplayFilterPattern = false

64
Is there any way to get listed only visible items in the drop down filter window

OleObject oComboBox,var_Column,var_Column1,var_Items
any h

oComboBox = ole_1.Object
oComboBox.LinesAtRoot = -1
oComboBox.Description(0,"")
oComboBox.Description(1,"")
oComboBox.Description(2,"")
var_Column = oComboBox.Columns.Add("P1")
	var_Column.DisplayFilterButton = true
	var_Column.DisplayFilterPattern = false
	var_Column.FilterList = 1
var_Column1 = oComboBox.Columns.Add("P2")
	var_Column1.DisplayFilterButton = true
	var_Column1.DisplayFilterPattern = false
var_Items = oComboBox.Items
	h = var_Items.AddItem("R1")
	var_Items.CellCaption(h,1,"R2")
	var_Items.CellCaption(var_Items.InsertItem(h,,"Cell 1.1"),1,"Cell 1.2")
	var_Items.CellCaption(var_Items.InsertItem(h,,"Cell 2.1"),1,"Cell 2.2")

63
How do I filter for items that match exactly the specified string

OleObject oComboBox,var_Column

oComboBox = ole_1.Object
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.FilterType = 240
	var_Column.Filter = "Item 1"
oComboBox.Items.AddItem("Item 1")
oComboBox.Items.AddItem("Item 2")
oComboBox.Items.AddItem("Item 3")
oComboBox.ApplyFilter()

62
How can I can I programmatically filter for items with a specified icon assigned

OleObject oComboBox,var_Column,var_Items

oComboBox = ole_1.Object
oComboBox.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.FilterType = 10
	var_Column.Filter = String(1)
var_Items = oComboBox.Items
	var_Items.CellImage(var_Items.AddItem("Image 1"),0,1)
	var_Items.CellImage(var_Items.AddItem("Image 1"),0,1)
	var_Items.CellImage(var_Items.AddItem("Image 2"),0,2)
	var_Items.CellImage(var_Items.AddItem("Image 3"),0,3)
oComboBox.ApplyFilter()

61
How can I can I programmatically filter the checked items

OleObject oComboBox,var_Column,var_Items

oComboBox = ole_1.Object
var_Column = oComboBox.Columns.Add("Column")
	var_Column.Def(0,true)
	var_Column.DisplayFilterButton = true
	var_Column.FilterType = 6
	var_Column.Filter = String(0)
oComboBox.Items.AddItem(0)
var_Items = oComboBox.Items
	var_Items.CellState(var_Items.AddItem(1),0,1)
oComboBox.Items.AddItem(2)
oComboBox.ApplyFilter()

60
How can I can I filter programmatically the items based on some numerichal rules

OleObject oComboBox,var_Column

oComboBox = ole_1.Object
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.FilterType = 5
	var_Column.Filter = "> 0 <= 1"
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)
oComboBox.Items.AddItem(2)
oComboBox.ApplyFilter()

59
How can I can I filter programmatically the items based on a range/interval of dates

OleObject oComboBox,var_Column

oComboBox = ole_1.Object
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.DisplayFilterDate = true
	var_Column.FilterType = 4
	var_Column.Filter = "1/1/2001 to 1/1/2002"
oComboBox.Items.AddItem("1/1/2001")
oComboBox.Items.AddItem("2/1/2002")
oComboBox.ApplyFilter()

58
How can I can I filter programmatically given a specified pattern using wild characters like * or

OleObject oComboBox,var_Column

oComboBox = ole_1.Object
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.FilterType = 3
	var_Column.Filter = "0*"
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem("00")
oComboBox.Items.AddItem(1)
oComboBox.Items.AddItem("11")
oComboBox.ApplyFilter()

57
How can I can I select programmatically "Blanks/NonBlanks" option in the column's drop down filter

OleObject oComboBox,var_Column

oComboBox = ole_1.Object
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.FilterType = 1
oComboBox.ApplyFilter()

56
How can I display the column's filter

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("").DisplayFilterButton = true

55
How can I show the control's grid lines only for added/visible items

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.MarkSearchColumn = false
oComboBox.DrawGridLines = -2
oComboBox.Columns.Add("Column 1")
oComboBox.Columns.Add("Column 2")
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)
oComboBox.Items.AddItem(2)

54
Can I hide the hierarchy lines

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.LinesAtRoot = 1
oComboBox.HasLines = 0
oComboBox.Columns.Add("Column")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)
	h = var_Items.AddItem("Root 2")
	var_Items.InsertItem(h,,"Child")

53
Can I change the style or type for the hierarchy lines

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.LinesAtRoot = 1
oComboBox.HasLines = 2
oComboBox.Columns.Add("Column")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)
	h = var_Items.AddItem("Root 2")
	var_Items.InsertItem(h,,"Child")

52
Can I use my own icons for the +/- ( expand/collapse ) buttons

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oComboBox.LinesAtRoot = 1
oComboBox.HasButtons = 4
oComboBox.HasButtonsCustom(false,1)
oComboBox.HasButtonsCustom(true,2)
oComboBox.Columns.Add("Column")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)
	h = var_Items.AddItem("Root 2")
	var_Items.InsertItem(h,,"Child")

51
How do I change visual appearance of the +/- ( expand/collapse ) buttons

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.LinesAtRoot = 1
oComboBox.HasButtons = 3
oComboBox.Columns.Add("Column")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)
	h = var_Items.AddItem("Root 2")
	var_Items.InsertItem(h,,"Child")

50
How can I change the "IsChecked/IsUnchecked" caption in the control's filter bar, when I filter for checked items

OleObject oComboBox,var_Column

oComboBox = ole_1.Object
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.FilterType = 6
	var_Column.Filter = String(0)
oComboBox.Description(21,"Check_On")
oComboBox.Description(22,"Check_Off")
oComboBox.ApplyFilter()

49
How can I change the "Checked" caption in the drop down filter window, when I filter for checked items

OleObject oComboBox,var_Column

oComboBox = ole_1.Object
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.FilterType = 6
oComboBox.Description(19,"with check on")
oComboBox.Description(20,"with check off")

48
How can I change the name of the week days in the drop down calendar window, being displayed when I filter items between dates

OleObject oComboBox,var_Column

oComboBox = ole_1.Object
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.DisplayFilterDate = true
oComboBox.Description(18,"Du Lu Ma Mi Jo Vi Si")
oComboBox.ApplyFilter()

47
How can I change the name of the months in the drop down calendar window, being displayed when I filter items between dates

OleObject oComboBox,var_Column

oComboBox = ole_1.Object
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.DisplayFilterDate = true
oComboBox.Description(17,"Janvier Février Mars Avril Mai Juin Juillet Août Septembre Octobre Novembre Décembre")
oComboBox.ApplyFilter()

46
Can I change the "Today" caption being displayed in the drop down calendar, when I filter for dates

OleObject oComboBox,var_Column

oComboBox = ole_1.Object
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.DisplayFilterDate = true
oComboBox.Description(16,"Azi")
oComboBox.ApplyFilter()

45
The drop down filter window displays a "to" string between two datem when I filter dates. Can I change that

OleObject oComboBox,var_Column

oComboBox = ole_1.Object
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.DisplayFilterDate = true
oComboBox.Description(13,"->")
oComboBox.ApplyFilter()

44
How can I filter the items that are between an interval/range of dates

OleObject oComboBox,var_Column

oComboBox = ole_1.Object
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.DisplayFilterDate = true
oComboBox.ApplyFilter()

43
Can I change the "Date:" caption when the column's drop down filter window is shown

OleObject oComboBox,var_Column

oComboBox = ole_1.Object
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.DisplayFilterDate = true
oComboBox.Description(12,"Range")
oComboBox.ApplyFilter()

42
Can I filter for values using OR - NOT , instead AND operator

OleObject oComboBox,var_Column,var_Column1,var_Column2

oComboBox = ole_1.Object
var_Column = oComboBox.Columns.Add("Column 1")
	var_Column.DisplayFilterButton = true
	var_Column.FilterType = 1
var_Column1 = oComboBox.Columns.Add("Column 2")
	var_Column1.DisplayFilterButton = true
	var_Column1.FilterType = 1
var_Column2 = oComboBox.Columns.Add("Column 3")
	var_Column2.DisplayFilterButton = true
	var_Column2.FilterType = 1
oComboBox.FilterCriteria = "%0 or not %1 and %2"
oComboBox.ApplyFilter()

41
Can I change the NOT string in the filter bar

OleObject oComboBox,var_Column,var_Column1

oComboBox = ole_1.Object
var_Column = oComboBox.Columns.Add("Column 1")
	var_Column.DisplayFilterButton = true
	var_Column.FilterType = 1
var_Column1 = oComboBox.Columns.Add("Column 2")
	var_Column1.DisplayFilterButton = true
	var_Column1.FilterType = 2
oComboBox.FilterCriteria = "not %0 or %1"
oComboBox.Description(24," ! ")
oComboBox.Description(10," ! IsBlank")
oComboBox.ApplyFilter()

40
How do I ensure that the focused item is visible, after the user does the sort

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.EnsureOnSort = true
oComboBox.Columns.Add("Column")
var_Items = oComboBox.Items
	var_Items.AddItem("Item 3")
	var_Items.AddItem("Item 1")
	var_Items.AddItem("Item 2")
oComboBox.PutItems(oComboBox.GetItems(0))
oComboBox.PutItems(oComboBox.GetItems(0))
oComboBox.PutItems(oComboBox.GetItems(0))
oComboBox.Columns.Item(0).SortOrder = 1

39
Can I change the OR string in the filter bar

OleObject oComboBox,var_Column,var_Column1

oComboBox = ole_1.Object
var_Column = oComboBox.Columns.Add("Column 1")
	var_Column.DisplayFilterButton = true
	var_Column.FilterType = 1
var_Column1 = oComboBox.Columns.Add("Column 2")
	var_Column1.DisplayFilterButton = true
	var_Column1.FilterType = 2
oComboBox.FilterCriteria = "%0 or %1"
oComboBox.Description(23," | ")
oComboBox.ApplyFilter()

38
Can I change the AND string in the filter bar

OleObject oComboBox,var_Column,var_Column1

oComboBox = ole_1.Object
var_Column = oComboBox.Columns.Add("Column 1")
	var_Column.DisplayFilterButton = true
	var_Column.FilterType = 1
var_Column1 = oComboBox.Columns.Add("Column 2")
	var_Column1.DisplayFilterButton = true
	var_Column1.FilterType = 2
oComboBox.Description(11," & ")
oComboBox.ApplyFilter()

37
The "IsBlank" caption shown in the control's filterbar when I select "Blanks" or "NonBlanks" items in the column's drop down filter window

OleObject oComboBox,var_Column

oComboBox = ole_1.Object
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.FilterType = 1
oComboBox.Description(9,"Is Empty")
oComboBox.Description(10,"Is Not Empty")
oComboBox.ApplyFilter()

36
Is there any option to remove the tooltip when the cursor hovers the column's drop down filter window

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("Column").DisplayFilterButton = true
oComboBox.Description(4,"")
oComboBox.Description(5,"")
oComboBox.Description(6,"")
oComboBox.Description(7,"")
oComboBox.Description(8,"")
oComboBox.Description(14,"")
oComboBox.Description(15,"")

35
How can I change the "Filter For" caption in the column's drop down filter window

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("Column").DisplayFilterButton = true
oComboBox.Description(3,"new caption")

34
Can I remove the "All", "Blanks" and "NonBlanks" items in the drop down filter window

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("Column").DisplayFilterButton = true
oComboBox.Description(0,"")
oComboBox.Description(1,"")
oComboBox.Description(2,"")

33
How do I change the "All", "Blanks" or/and "NonBlanks" caption in the drop down filter window

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("Column").DisplayFilterButton = true
oComboBox.Description(0,"new name for (All)")

32
How can I change the position of the column

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("Column 1")
oComboBox.Columns.Add("Column 2").Position = 0

31
Can I make strikeout the column's header

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("Column 1").HeaderStrikeOut = true

30
How can I apply an strikeout font only a portion of the column's header

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("Column 1").HTMLCaption = "<s>Col</s>umn 1"

29
How can I get underlined only a portion of column's header

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("Column 1").HTMLCaption = "<u>Col</u>umn 1"

28
How can I underline the column's header

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("Column 1").HeaderUnderline = true

27
How can I apply an italic font only a portion of the column's header

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("Column 1").HTMLCaption = "<i>Col</i>umn 1"

26
Is there any option to make italic the column's header

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("Column 1").HeaderItalic = true

25
How can I bold only a portion of the column's header

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("Column 1").HTMLCaption = "<b>Col</b>umn 1"

24
Is there any option to bold the column's header

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("Column 1").HeaderBold = true

23
Why child items are not shown

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.LinesAtRoot = -1
oComboBox.Columns.Add("Column 1")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)

22
Does your control support partial-check ( three states ) feature for each column

OleObject oComboBox,var_Column,var_Column1,var_Items
any h

oComboBox = ole_1.Object
oComboBox.LinesAtRoot = -1
var_Column = oComboBox.Columns.Add("P1")
	var_Column.Def(0,true)
	var_Column.PartialCheck = true
var_Column1 = oComboBox.Columns.Add("P2")
	var_Column1.Def(0,true)
	var_Column1.PartialCheck = true
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)

21
Can I change the font to display the column's header

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.HeaderHeight = 34
oComboBox.Columns.Add("Column 1").HTMLCaption = "<font Tahoma;14>Column</font> 1"

20
Can I change the height of the header bar

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.HeaderHeight = 32

19
Can I display multiple icons to the column's header

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oComboBox.Columns.Add("Column 1").HTMLCaption = "1<img>1</img> 2 <img>2</img>..."

18
How can I draw grid lines only for visible items

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.MarkSearchColumn = false
oComboBox.DrawGridLines = -2
oComboBox.Columns.Add("Column 1")
oComboBox.Columns.Add("Column 2")
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)
oComboBox.Items.AddItem(2)

17
How can I show the control's grid lines

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.MarkSearchColumn = false
oComboBox.DrawGridLines = -1
oComboBox.Columns.Add("Column 1")
oComboBox.Columns.Add("Column 2")
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)
oComboBox.Items.AddItem(2)

16
How can I assign a different background color for the entire column

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.MarkSearchColumn = false
oComboBox.Columns.Add("Column 1").Def(4,255)
oComboBox.Columns.Add("Column 2")
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)
oComboBox.Items.AddItem(2)

15
How can I assign a check box for a cell

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("Column 1")
var_Items = oComboBox.Items
	var_Items.AddItem(0)
	var_Items.CellHasCheckBox(var_Items.AddItem(1),0,true)
	var_Items.AddItem(2)

14
How can I assign checkboxes for the entire column

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("Column 1").Def(0,true)
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)
oComboBox.Items.AddItem(2)

13
How can I change the column's width

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.ColumnAutoResize = false
oComboBox.Columns.Add("Column 1").Width = 64
oComboBox.Columns.Add("Column 2").Width = 128

12
How can I show or hide a column

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("Hidden").Visible = false

11
How can I hide the searching column

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.MarkSearchColumn = false
oComboBox.Columns.Add("Column 1")
oComboBox.Columns.Add("Column 2")
oComboBox.Items.AddItem()

10
Can I disable sorting a column, when the user clicks the column's header, or drag it to the sort bar

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("Unsortable").AllowSort = false
oComboBox.Columns.Add("Sortable")

9
Is there any option to align the header to the left and the data to the right

OleObject oComboBox,var_Column,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("Left").Alignment = 0
var_Column = oComboBox.Columns.Add("Right")
	var_Column.Alignment = 2
	var_Column.HeaderAlignment = 2
var_Items = oComboBox.Items
	var_Items.CellCaption(var_Items.AddItem("left"),1,"right")

8
Can I displays a custom size picture to column's header

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.HTMLPicture("pic1","c:\exontrol\images\zipdisk.gif")
oComboBox.HeaderHeight = 48
oComboBox.Columns.Add("ColumnName").HTMLCaption = "<b>HTML</b> Column <img>pic1</img> Picture"

7
How can I insert an icon to column's header

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oComboBox.Columns.Add("ColumnName").HTMLCaption = "<b>HTML</b> Column <img>1</img> Icon"

6
How can I insert an icon to column's header

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oComboBox.Columns.Add("ColumnName").HeaderImage = 1

5
How can I use HTML format in column's header

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("ColumnName").HTMLCaption = "<b>HTML</b> <fgcolor=0000FF>Col</fgcolor>umn"

4
How can I change/rename the column's name

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("ColumnName").Caption = "NewName"

3
How can I add multiple columns

OleObject oComboBox,var_Columns

oComboBox = ole_1.Object
var_Columns = oComboBox.Columns
	var_Columns.Add("Column 1")
	var_Columns.Add("Column 2")

2
I've added a single column, but it is displayed only on a part of the control. Is there something I can do so the column will be fully displayed on the control

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("ColumnName")
oComboBox.Items.AddItem("Item 1")
oComboBox.Items.AddItem("Item 2")

1
How can I add a new column

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("ColumnName")